From: River Tarnell Date: Fri, 1 Jul 2005 21:40:22 +0000 (+0000) Subject: propagate rc_this_oldid properly X-Git-Tag: 1.5.0beta2~93 X-Git-Url: http://git.cyclocoop.org//%22http:/%22.attribut_html%28%24lesurls%5B%24numero%5D%29.%22/%22?a=commitdiff_plain;h=5dc7742ae136bbc0e30013f5a8232491d20d6f86;p=lhc%2Fweb%2Fwiklou.git propagate rc_this_oldid properly --- diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 0909c99bff..2c660121ed 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -63,10 +63,10 @@ class RecentChange return $rc; } - /* static */ function newFromCurRow( $row ) + /* static */ function newFromCurRow( $row, $rc_this_oldid = 0 ) { $rc = new RecentChange; - $rc->loadFromCurRow( $row ); + $rc->loadFromCurRow( $row, $rc_this_oldid ); $rc->notificationtimestamp = false; $rc->numberofWatchingusers = false; return $rc;